home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Arsenal / OS2 Arsenal v1.0 (Disc 1)(Arsenal Computer).ISO / os2_text / cdrom.fax < prev    next >
Text File  |  1994-07-21  |  5KB  |  104 lines

  1. ┌────────────────────────────────────────────────────────────────────────────┐
  2. │                               OS/2 2.0 Technical Tips                      │
  3. │                                      From the                              │
  4. │                             OS/2 Technical Support Team                    │
  5. │                                 Boca Raton, Florida                        │
  6. │                                                                            │
  7. ├───────────────────┬──────────────────────────────────────┬─────────────────┤
  8. │    File Name      │   Description                        │ Number of pages │
  9. ├───────────────────┼──────────────────────────────────────┼─────────────────┤
  10. │  DOSCDROM.FAX     │ OS/2 - Configuring CDROM's in a VDM  │        2        │
  11. └───────────────────┴──────────────────────────────────────┴─────────────────┘
  12.  
  13.  
  14.  
  15. CD-ROM CONFIGURATION INFORMATION
  16. --------------------------------
  17.  
  18. IBM does offer support for CDROM technology within the OS/2, and many
  19. other vendors are rapidly designed OS/2 device drivers for their CDROM
  20. peripherals.  Unfortunately, there is a wide base of CDROM drives that
  21. do not yet have native device drivers for OS/2.  Not to worry however;
  22. through the use of OS/2's Virtual DOS Machines, you can configure many
  23. CDROM drives to use in the OS/2 DOS environment.
  24.  
  25.  
  26.  
  27. Ensure that you have the following:
  28. 1.  A DOS 5.0 bootable diskette
  29. 2.  MSCDEX.EXE v2.21, dated 2-4-92, size 25431 bytes
  30.     if that is your CDROM's interface program.
  31. 3.  CD-ROM device driver for your specific CD-ROM drive,
  32.  
  33.   NOTE:  If you do not have the last two items please contact your
  34.          CDROM vendor.
  35.  
  36.  
  37.  
  38. STEP 1. Create a VMB from a DOS 5.0 bootable diskette, using the VMDISK command.
  39.         If you need additional assistance please use the online command
  40.         reference or call IBM support for the VMB procedure FAX.
  41.  
  42. STEP 2. On this diskette place the following files as your setup requires:
  43.         * COMMAND.COM (will be included when the DOS Boot diskette is made)
  44.         * FSFILTER.SYS (from the \os2\mdos directory)
  45.         * MSCDEX.EXE (v2.21 which does not require the use of the
  46.           SETVER command)
  47.         * The CDROM device driver from your vendor, for example UTEXCD.SYS
  48.  
  49. STEP 3. Create a CONFIG.SYS file with the following:
  50.         SHELL=A:\COMMAND.COM /P /E:1024
  51.         DEVICE=A:\FSFILTER.SYS
  52.         LASTDRIVE=Z
  53.         DEVICE=A:\ [ CDROM-Device-Driver-Name-and-Parmeters ]
  54.  
  55. STEP 4. Create an AUTOEXEC.BAT file with the following:
  56.         SET COMSPEC=A:\COMMAND.COM
  57.         PROMPT $P$G
  58.         MSCDEX /D:Specific-Parameters-for-the-CDROM-Drive
  59.         Most often this entry will look similar to MSCDEX /D:IBMCD001
  60.         but may have additional parameters as specified in your
  61.         CD-ROM vendor's documentation.  Call your CD-ROM vendor for
  62.         exact details.  Most often the /D: parameter specifies the
  63.         name of the device driver file from step 3, but not always.
  64.  
  65. STEP 5. Now OPEN the SETTINGS for the VMB program object you created in
  66.         STEP 1.  From the settings NOTEBOOK, click the session tab, and then
  67.         click the DOS_SETTINGS pushbutton to reveal the VDM's settings.
  68.         Find the DOS_STARTUP_DRIVE entry, and the DOS_SHELL entry and
  69.         have them point to the path and filename of the DOS VMB image file
  70.         that you have created, for example C:\OS2\MDOS\DOS5.VMB
  71.  
  72. STEP 6. Close the settings NOTEBOOK and Double-click mouse button 1 on the
  73.         newly created program object.  This should boot the image file and
  74.         provide access to the CDROM drive.  NOTE:  you can only access
  75.         the drive from this VMB session.
  76.  
  77.  
  78. The following is specific configuration examples for a SONY 535 drive:
  79.  
  80. CONFIG.SYS [ SEE STEP 3 above ]
  81.  
  82. DEVICE=C:\CDROM\SONY_CDU.SYS /D:MSCD210 /U:1 /B:340 /M:H /Q:* /T:*
  83.  
  84. The /d: is the device name. Must be the same as in MSCDEX
  85. { /U:n }  number of Drive daisy changed. Is optional
  86. {/B:XXX} Base address of CD HOSTADDRE default is 340.
  87. {/M:mode} Mode for data transfer. 'D' for DMA, 'P' for software transfer
  88.       'H' for high speed transfer (fast CPU).
  89.        H is default for AT's and up, P is default for XT machines.
  90. {/T:drq} If using DMA, This specifies the DRQ channel number for the Host
  91.    adapter will use. * means don't use.
  92. {/Q:irq} Specifies IRQ channel number to use. * means dont use.
  93.  
  94.  
  95. AUTOEXEC.BAT [ SEE STEP 4 above ]
  96.   MSCDEX.EXE /D:MSCD210 /E /M:4 /L:S /V
  97.  
  98. /D: Is the device name. Must match the onein the config.sys
  99. /M:X Species how many DOS buffers to use. The suggested minimum is 4-5
  100. /V says to display informnation about the CD
  101. /L:X  SPECIFIES Which letter to  give to the cd (like c:, D: ...)
  102. /E:  says to use expanded memory.
  103.  
  104.